docs: add test-container-proxy to make help output#2249
Merged
Conversation
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s make help output to surface a container-proxy integration test target alongside other test targets.
Changes:
- Adds
test-container-proxyto thehelptarget output.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| @echo " test-all - Run all tests (unit + integration)" | ||
| @echo " test-serena - Run Serena MCP Server tests (direct connection)" | ||
| @echo " test-serena-gateway - Run Serena MCP Server tests (via MCP Gateway)" | ||
| @echo " test-container-proxy - Run container proxy integration tests (requires Docker)" |
There was a problem hiding this comment.
The help output advertises a test-container-proxy target, but there is no corresponding make target defined anywhere in this Makefile (the only occurrence is this help line). This will mislead users; either add the test-container-proxy: target (and any required .PHONY entry) or change the help text to match the actual existing target name.
Suggested change
| @echo " test-container-proxy - Run container proxy integration tests (requires Docker)" |
This was referenced Mar 21, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Adds the
test-container-proxytarget to themake helplisting so it's discoverable alongside other test targets.